home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1998 June / Software of the Month Club 1998 June.iso / pc / dos / edu / mapit20 / mapit.bat < prev    next >
DOS Batch File  |  1998-04-15  |  599b  |  17 lines

  1. @echo off
  2. rem  MAPIT.BAT  -  Build a directory structure in which MAPIT 2 can run
  3. rem                and then run the real MAPIT.  This batch file is
  4. rem                designed to make setup invisible to the novice user
  5. rem  and will normally be run only once.  It renames itself to mapitold.bat
  6. rem  so that running "MAPIT" in the future will run only the real program.
  7. rem
  8. rem  Note: This batch file cannot be run on a read-only CD-ROM.
  9. rem
  10. rem  Create the required directory structure.
  11. call build
  12. rem
  13. ren smapit.exe mapit.exe
  14. copy mapit.bat mapitold.bat
  15. call mapit
  16. del mapit.bat
  17.